home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / visulztn / collage / xwin.lha / XCollage / watch.shar / watch.h < prev    next >
C/C++ Source or Header  |  1993-09-22  |  964b  |  32 lines

  1. #include <stdio.h>                      /* Standard I/O stuff */
  2. #include <sys/types.h>                  /* Different socket types */
  3. #include <sys/socket.h>                 /* Needed for sockets */
  4. #include <sys/un.h>                     /* Unix Domain Socket structure*/
  5. #include <sgtty.h>                      /* I/O configuration structure */
  6. #include <sys/ioctl.h>                  /* I/O control */
  7. #include <errno.h>                      /* For Spec. Error messages */
  8. extern errno;
  9.  
  10.  
  11. #define BUFSIZE 80                      /* Buffer by line at most */
  12. #define TALKSWITCH      23              /* Talk toggle character:  ^W */
  13. #define MAXNAME 256            /* Maximum file name length */
  14. #define MAXLINE 80            /* Maximum terminal line length */
  15. #define BACKLOG 1            /* Queue size for listening to sockets*/
  16.  
  17. #ifndef STDIN
  18. #define STDIN   0
  19. #endif
  20.  
  21. #ifndef STDOUT
  22. #define STDOUT  1
  23. #endif
  24.  
  25. #ifndef TRUE
  26. #define TRUE    1
  27. #endif
  28.  
  29. #ifndef FALSE
  30. #define FALSE   0
  31. #endif
  32.